home *** CD-ROM | disk | FTP | other *** search
- // Department.h
- //
- // Created on Wed Feb 15 09:50:50 GMT-0800 1995 by NeXT EOModeler.app Version 77
-
- #import <eoaccess/eoaccess.h>
- @class Employee;
-
- @interface Department : NSObject
- {
- NSString *departmentName;
- int deptId;
- int locationId;
- NSArray *toEmployees;
- }
-
- - (NSString *)validateEmployee:(Employee *)emp;
- // called to see if the department is okay with the setting of this employee
-
- @end
-